.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.item{
    box-sizing: border-box;
    width: 600px;
    height: 400px;
    font-size: 12px;
    text-align: center;
    border-radius: 15px;
    flex-direction: row;
    justify-content: center;
   
}
#item-1{
    font-size: 14px;
    background-color: green;
    flex-direction: row;
    color: red;
}
#item-2{
    font-size: 14px;
    background-color: red;
    color: blue;
}
#item-3{
    font-size: 14px;
    background-color: white;
    width: 800px;
    flex-direction: row;
    color: black;
}


body {
	background-color:black;
	
}
h1{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
   }
   .timebox{
	/*width: calc(600px / 3);*/
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 100px;

   }
   .time{
	text-align: center;
   }
   .time h2{
	font-size: 24px;
	font-weight: 100;

   }
    h1{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
   }
   .timebox2{
	/* width: calc(600px / 3); */
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
	gap: 30px;
	

   }
   .time2{
	text-align: center;
   }
   .time2 h2{
	font-size: 24px;
	font-weight: 100;

   }
   h1{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 20px;
   }
   .timebox3{
	/* width: calc(600px / 3); */
    display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 100px;
	gap: 30px;
	

   }
   .time3{
	text-align: center;
   }
   .time3 h2{
	font-size: 24px;
	font-weight: 100;

   }

   header {
    text-align: center;
    background-color: darkcyan;
    font-size: 32px;
    font-weight: bold;
    width: 100%;
    height: 60px;
    color: burlywood;
   }

   .menu-button {
    background-color: slategray;
    border:2px black;
    color: white;
    padding: 15px 32px;
    text-align: center;
    font-size: 24px;
    margin: 4px 2 px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease;
    width: 150px;
    height: 50px;
    font-weight: bold;
    align-items: center;
   }

   .menu-button:hover{
    background-color: darkslategray;
   }

   footer {
    text-align: center;
    background-color: darkcyan;
    font-size: 32px;
    font-weight: bold;
    width: 100%;
    height: 40px;
    color: burlywood;


   }